home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- sprite(29).member = "Notes_Prod_RO"
- cursor(280)
- end
-
- on mouseLeave
- sprite(29).member = "Notes_Prod"
- cursor(0)
- end
-
- on mouseDown
- sound(3).play(member("click"))
- sprite(112).visible = 1
- updateStage()
- thing()
- end
-
- on mouseUp
- pel = the moviePath & "MEDIA"
- if the platform contains "Mac" then
- Acrbat = the moviePath & "Acrobat Reader Mac 4.0:Acrobat Reader"
- open(pel & ":NOTES:PRODUCTION.PDF", Acrbat)
- else
- Acrbat = the moviePath & "acrobat4\Reader\AcroRd32.exe"
- open(pel & "\NOTES\PRODUCTION.PDF", Acrbat)
- sprite(112).visible = 0
- end if
- end
-